• frmSubCategoryRecord.Designer.cs
  • project /
1 namespace WarehouseManagementSystem
2 {
3     
partial class frmSubCategoryRecord
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             
this.dataGridView1 = new System.Windows.Forms.DataGridView();
32             
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
33             
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
34             
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
35             
this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
36             
this.groupBox2 = new System.Windows.Forms.GroupBox();
37             
this.txtSubCategory = new System.Windows.Forms.TextBox();
38             ((System.ComponentModel.ISupportInitialize)(
this.dataGridView1)).BeginInit();
39             
this.groupBox2.SuspendLayout();
40             
this.SuspendLayout();
41             
//
42             
// dataGridView1
43             
//
44             
this.dataGridView1.AllowUserToAddRows = false;
45             
this.dataGridView1.AllowUserToDeleteRows = false;
46             
this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
47             
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
48             
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
49             
this.Column1,
50             
this.Column2,
51             
this.Column3,
52             
this.Column4});
53             
this.dataGridView1.Location = new System.Drawing.Point(-1, 103);
54             
this.dataGridView1.MultiSelect = false;
55             
this.dataGridView1.Name = "dataGridView1";
56             
this.dataGridView1.ReadOnly = true;
57             
this.dataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
58             
this.dataGridView1.Size = new System.Drawing.Size(664, 416);
59             
this.dataGridView1.TabIndex = 0;
60             
this.dataGridView1.RowHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_RowHeaderMouseClick);
61             
this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
62             
//
63             
// Column1
64             
//
65             
this.Column1.HeaderText = "Sub Category ID";
66             
this.Column1.Name = "Column1";
67             
this.Column1.ReadOnly = true;
68             
this.Column1.Width = 120;
69             
//
70             
// Column2
71             
//
72             
this.Column2.HeaderText = "Sub Category";
73             
this.Column2.Name = "Column2";
74             
this.Column2.ReadOnly = true;
75             
this.Column2.Width = 200;
76             
//
77             
// Column3
78             
//
79             
this.Column3.HeaderText = "Category ID";
80             
this.Column3.Name = "Column3";
81             
this.Column3.ReadOnly = true;
82             
//
83             
// Column4
84             
//
85             
this.Column4.HeaderText = "Category";
86             
this.Column4.Name = "Column4";
87             
this.Column4.ReadOnly = true;
88             
this.Column4.Width = 200;
89             
//
90             
// groupBox2
91             
//
92             
this.groupBox2.Controls.Add(this.txtSubCategory);
93             
this.groupBox2.Font = new System.Drawing.Font("Palatino Linotype", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
94             
this.groupBox2.Location = new System.Drawing.Point(12, 12);
95             
this.groupBox2.Name = "groupBox2";
96             
this.groupBox2.Size = new System.Drawing.Size(322, 82);
97             
this.groupBox2.TabIndex = 118;
98             
this.groupBox2.TabStop = false;
99             
this.groupBox2.Text = "Search by Sub Category";
100             
//
101             
// txtSubCategory
102             
//
103             
this.txtSubCategory.Location = new System.Drawing.Point(16, 40);
104             
this.txtSubCategory.Name = "txtSubCategory";
105             
this.txtSubCategory.Size = new System.Drawing.Size(284, 24);
106             
this.txtSubCategory.TabIndex = 0;
107             
this.txtSubCategory.TextChanged += new System.EventHandler(this.txtSubCategory_TextChanged);
108             
//
109             
// frmSubCategoryRecord
110             
//
111             
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
112             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
113             
this.BackColor = System.Drawing.SystemColors.ButtonHighlight;
114             
this.ClientSize = new System.Drawing.Size(664, 442);
115             
this.Controls.Add(this.groupBox2);
116             
this.Controls.Add(this.dataGridView1);
117             
this.Font = new System.Drawing.Font("Palatino Linotype", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
118             
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
119             
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
120             
this.MaximizeBox = false;
121             
this.MinimizeBox = false;
122             
this.Name = "frmSubCategoryRecord";
123             
this.ShowIcon = false;
124             
this.ShowInTaskbar = false;
125             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
126             
this.Text = "Record";
127             
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmCompanyRecord_FormClosing);
128             
this.Load += new System.EventHandler(this.frmCompanyRecord_Load);
129             ((System.ComponentModel.ISupportInitialize)(
this.dataGridView1)).EndInit();
130             
this.groupBox2.ResumeLayout(false);
131             
this.groupBox2.PerformLayout();
132             
this.ResumeLayout(false);
133
134         }
135
136         
#endregion
137
138         
public System.Windows.Forms.DataGridView dataGridView1;
139         
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
140         
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
141         
private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
142         
private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
143         
private System.Windows.Forms.GroupBox groupBox2;
144         
private System.Windows.Forms.TextBox txtSubCategory;
145
146     }
147 }


Gõ tìm kiếm nhanh...